New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@fingerprintjs/fingerprintjs-pro

Package Overview
Dependencies
Maintainers
3
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fingerprintjs/fingerprintjs-pro

Fingerprint Pro JavaScript agent

  • 3.11.8
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
138K
increased by5.06%
Maintainers
3
Weekly downloads
 
Created

What is @fingerprintjs/fingerprintjs-pro?

@fingerprintjs/fingerprintjs-pro is an advanced browser fingerprinting library that helps developers identify users across different sessions and devices. It provides robust and accurate identification by combining various browser and device attributes.

What are @fingerprintjs/fingerprintjs-pro's main functionalities?

Visitor Identification

This feature allows you to identify a visitor by generating a unique visitor ID based on their browser and device attributes.

const FingerprintJS = require('@fingerprintjs/fingerprintjs-pro');

(async () => {
  const fp = await FingerprintJS.load({ apiKey: 'your-api-key' });
  const result = await fp.get();
  console.log(result.visitorId);
})();

Bot Detection

This feature helps in detecting if the visitor is a bot by analyzing various signals from the browser and device.

const FingerprintJS = require('@fingerprintjs/fingerprintjs-pro');

(async () => {
  const fp = await FingerprintJS.load({ apiKey: 'your-api-key' });
  const result = await fp.get();
  console.log(result.bot);
})();

Incognito Mode Detection

This feature allows you to detect if the visitor is using incognito or private browsing mode.

const FingerprintJS = require('@fingerprintjs/fingerprintjs-pro');

(async () => {
  const fp = await FingerprintJS.load({ apiKey: 'your-api-key' });
  const result = await fp.get();
  console.log(result.incognito);
})();

Other packages similar to @fingerprintjs/fingerprintjs-pro

Keywords

FAQs

Package last updated on 13 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc